body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  header {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 22px;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul li a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
  }
  
  nav ul li:hover > a {
    background-color: #005599;
  }
  
  .submenu {
    display: none;
    position: absolute;
    background-color: #005599;
    min-width: 180px;
    z-index: 999;
  }
  
  .submenu-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #0077cc;
    min-width: 180px;
    z-index: 999;
  }
  
  .dropdown:hover .submenu {
    display: block;
  }
  
  .dropdown-sub:hover .submenu-sub {
    display: block;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      width: 100%;
      flex-direction: column;
      background-color: #003366;
    }
  
    nav ul.show {
      display: flex;
    }
  
    .submenu,
    .submenu-sub {
      position: static;
    }
  }
  
  .contenedor-soporte {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .contenedor-soporte h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #003366;
  }
  
  .contenido {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .imagen-soporte {
    text-align: center;
    margin-bottom: 25px;
  }
  
  .imagen-soporte img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    max-height: 250px;
  }
  
  .contenido h2 {
    color: #005599;
    margin-top: 20px;
  }
  
  .contenido ul {
    list-style: disc inside;
    color: #555;
    padding-left: 20px;
  }
  
  .contenido p {
    color: #555;
    line-height: 1.6;
  }
  
  /* Redes sociales flotantes */
  .redes-flotante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  
  .menu-redes {
    display: none;
    margin-bottom: 10px;
    flex-direction: column;
    gap: 10px;
  }
  
  .menu-redes a img {
    width: 40px;
    height: 40px;
  }
  
  .btn-principal {
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .btn-principal img {
    width: 30px;
    height: 30px;
  }
  
  footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
  }
  